home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7007.txt < prev    next >
Text File  |  1996-03-22  |  3KB  |  105 lines

  1. Returns the top-left and bottom-right corners of the video screen.
  2.  
  3. GetScreen(VAR x1, y1, x2, y2 : INTEGER);
  4.  
  5. Returns TRUE if the string parameter str can be converted into a numeric angle value, otherwise it returns FALSE.
  6.  
  7. ValidAngStr(str : STRING; VAR value : REAL) : BOOLEAN;
  8.  
  9. Returns TRUE if the string parameter str can be converted into a numeric value, otherwise it returns FALSE.
  10.  
  11. ValidNumStr(str : STRING; VAR value: REAL): BOOLEAN;
  12.  
  13. Returns TRUE if check box or radio button is checked, otherwise it returns FALSE.
  14.  
  15. ItemSel(fieldID : INTEGER): BOOLEAN;
  16.  
  17. Selects or deselects the check box or radio button which has that fieldID number.
  18.  
  19. SetItem(fieldID : INTEGER; select : BOOLEAN);
  20.  
  21. Hilites the text field which has that fieldID number.
  22.  
  23. SelField(fieldID : INTEGER);
  24.  
  25. Places text into a custom dialog text field.
  26.  
  27. SetField(fieldID : INTEGER; str : STRING);
  28.  
  29. Returns the text located in the text field which has that fieldID number.
  30.  
  31. GetField(fieldID : INTEGER): STRING;
  32.  
  33. Monitors userΓÇÖs activity within a custom dialog box.
  34.  
  35. DialogEvent(VAR item : INTEGER);
  36.  
  37. Closes a custom dialog which is currently displayed.
  38.  
  39. ClrDialog;
  40.  
  41. Displays the dialog which has that dialogID number.
  42.  
  43. GetDialog(dialogID : INTEGER);
  44.  
  45. Creates a field within a custom dialog box.
  46.  
  47. AddField(fieldStr: STRING; ItemID, fieldType, x1, y1, x2, y2 : INTEGER);
  48.  
  49. Creates a button within a custom dialog box.
  50.  
  51. AddButton(buttonStr : STRING; ItemID, buttonType, x1, y1, x2, y2 : INTEGER);
  52.  
  53. Terminates the custom dialog creation process.
  54.  
  55. EndDialog;
  56.  
  57. Initiates the custom dialog creation process.
  58.  
  59. BeginDialog(dialogID, dialogType, x1, y1, x2, y2 : INTEGER);
  60.  
  61. Informs programmer whether the user click the cancel button.
  62.  
  63. DidCancel : BOOLEAN;
  64.  
  65. Dialog box that allows a user to input the 3D coordinate point.
  66.  
  67. PtDialog3D((DisplayStr, XStr, YStr, ZStr : STRING; VAR XPt, YPt, ZPt : REAL);
  68.  
  69. Dialog box that allows a user to input the 3D rotation angles of an object.
  70.  
  71. AngDialog3D(DisplayStr, XStr, YStr, ZStr : STRING; VAR XAngle, YAngle, ZAngle : REAL);
  72.  
  73. Dialog box that relays a message to the user.
  74.  
  75. AlrtDialog(Message : STRING);
  76.  
  77. Dialog box that allows a user to answer a yes/no question.
  78.  
  79. YNDialog(RequestStr : STRING) : BOOLEAN;
  80.  
  81. Dialog box that requests the user to input a string.
  82.  
  83. StrDialog(RequestStr, Default : STRING) : STRING;
  84.  
  85. Dialog box that requests the user to input a real number.
  86.  
  87. RealDialog(RequestStr, Default : STRING) : REAL;
  88.  
  89. Dialog box that requests the user to input a point X & Y coordinates.
  90.  
  91. PtDialog(RequestStr, DefaultX, DefaultY : STRING;  X, Y : REAL);
  92.  
  93. Dialog box that requests the user to input an integer number.
  94.  
  95. IntDialog(RequestStr, Default : STRING) : INTEGER;
  96.  
  97. Dialog box that requests the user to input an distance.
  98.  
  99. DistDialog(RequestStr, Default : STRING) : REAL;
  100.  
  101. Dialog box that requests the user to input an angle.
  102.  
  103. AngDialog(RequestStr, Default : STRING) : REAL;
  104.  
  105.